home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _C41CDE0CCBAE442CABAC9BBE4316FD5A < prev    next >
Encoding:
Text File  |  2000-03-27  |  866 b   |  25 lines

  1. #include "../common/header.ds"
  2. output "p:/base/ds/tsr1"
  3.  
  4.  
  5.  
  6.  
  7. // this script spawns guys in around the corner just in case ghoul is rendering them
  8.  
  9.  
  10.  
  11. local entity endstepsguy1 // first guy
  12. local entity endstepsguy2 // second guy who will jump down the stairs
  13. local entity bstepsguy // the guy walking path corners at the bottom of the stairs
  14.  
  15. endstepsguy1 = find entity with targetname "endstepsguy1"
  16. endstepsguy2 = find entity with targetname "endstepsguy2"
  17. bstepsguy = find entity with targetname "bstepsguy"
  18.  
  19. use entity endstepsguy1 // spawns the first guy in
  20. use entity endstepsguy2 // spawns the second guy in.
  21. use entity bstepsguy // spawns the other guy in
  22.  
  23. animate entity endstepsguy1 performing action SCRIPT_RELEASE
  24. animate entity endstepsguy2 performing action SCRIPT_RELEASE
  25. animate entity bstepsguy performing action SCRIPT_RELEASE